home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / basic / ace24dist.lha / ace24.lha / include / graphics / Scale.h < prev    next >
C/C++ Source or Header  |  1996-09-10  |  1KB  |  52 lines

  1. #ifndef GRAPHICS_SCALE_H
  2. #define GRAPHICS_SCALE_H 1
  3. /*
  4. ** scale.h for ACE Basic
  5. **
  6. ** Note: Translated to ACE by ConvertC2ACE
  7. **       @ MapMeadow Software, Nils Sjoholm
  8. **
  9. **
  10. ** Date: 09/01/95
  11. **
  12. **
  13. */
  14.  
  15. /*
  16. ** This are the StructPointer defines for scale.h
  17. */
  18. #ifndef BitScaleArgsPtr
  19. #define BitScaleArgsPtr ADDRESS
  20. #endif
  21. /*
  22. ** End of StructPointer defines for scale.h
  23. */
  24.      
  25. #ifndef EXEC_TYPES_H
  26. #include <exec/types.h>
  27. #endif
  28.  
  29.  
  30. STRUCT BitScaleArgs  
  31.     SHORTINT   bsa_SrcX 
  32.     SHORTINT   bsa_SrcY          /* source origin */
  33.     SHORTINT   bsa_SrcWidth 
  34.     SHORTINT   bsa_SrcHeight     /* source size */
  35.     SHORTINT   bsa_XSrcFactor 
  36.     SHORTINT   bsa_YSrcFactor  /* scale factor denominators */
  37.     SHORTINT   bsa_DestX 
  38.     SHORTINT   bsa_DestY        /* destination origin */
  39.     SHORTINT   bsa_DestWidth 
  40.     SHORTINT   bsa_DestHeight   /* destination size result */
  41.     SHORTINT   bsa_XDestFactor 
  42.     SHORTINT   bsa_YDestFactor    /* scale factor numerators */
  43.     BitMapPtr  bsa_SrcBitMap        /* source BitMap */
  44.     BitMapPtr  bsa_DestBitMap       /* destination BitMap */
  45.     LONGINT   bsa_Flags               /* reserved.  Must be zero! */
  46.     SHORTINT   bsa_XDDA 
  47.     SHORTINT   bsa_YDDA          /* reserved */
  48.     LONGINT    bsa_Reserved1 
  49.     LONGINT    bsa_Reserved2 
  50. END STRUCT 
  51. #endif  /* GRAPHICS_SCALE_H */
  52.